aboutsummaryrefslogtreecommitdiffstats
path: root/app/api/auth/[...nextauth]
diff options
context:
space:
mode:
Diffstat (limited to 'app/api/auth/[...nextauth]')
-rw-r--r--app/api/auth/[...nextauth]/route.tsx22
1 files changed, 2 insertions, 20 deletions
diff --git a/app/api/auth/[...nextauth]/route.tsx b/app/api/auth/[...nextauth]/route.tsx
index b9decb30..bfcda516 100644
--- a/app/api/auth/[...nextauth]/route.tsx
+++ b/app/api/auth/[...nextauth]/route.tsx
@@ -1,21 +1,3 @@
-import NextAuth from "next-auth"
-import { PrismaAdapter } from "@next-auth/prisma-adapter"
-import AuthentikProvider from "next-auth/providers/authentik";
-import { PrismaClient } from "@prisma/client"
-import serverConfig from "@/lib/config";
+import { authHandler } from "@/lib/auth";
-const prisma = new PrismaClient()
-
-let providers = [];
-
-if (serverConfig.auth.authentik) {
- providers.push(AuthentikProvider(serverConfig.auth.authentik));
-}
-
-const handler = NextAuth({
- // Configure one or more authentication providers
- adapter: PrismaAdapter(prisma),
- providers: providers,
-});
-
-export { handler as GET, handler as POST }
+export { authHandler as GET, authHandler as POST }